home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / FROMUTS / UNIXLIB37B / test / c / wdtest < prev    next >
Text File  |  1992-03-15  |  210b  |  16 lines

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #include "unistd.h"
  5.  
  6. #include "sys/param.h"
  7.  
  8. int main()
  9. {
  10. char b[MAXPATHLEN];
  11.  
  12. if (!(getwd(b,MAXPATHLEN))) { perror("cwdtest"); exit(1); }
  13. puts(b);
  14. puts(__uname(b,0));
  15. }
  16.